home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / misc / RCS / Rdist.old,v < prev    next >
Encoding:
Text File  |  1988-04-13  |  929 b   |  50 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @@;
  6.  
  7.  
  8. 1.1
  9. date     88.04.12.22.44.49;  author douglis;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @obsolete version of Rdist that cd's into different directories and
  16. runs pmake Rdist.  checking it in to "hide" it but leave it around
  17. just in case we ever want it again.
  18. @
  19.  
  20.  
  21.  
  22. 1.1
  23. log
  24. @Initial revision
  25. @
  26. text
  27. @#! /sprite/cmds/csh -fb
  28. # This file rdists the entire Sprite file system and is invoked
  29. # nightly by crontab.
  30.  
  31. # Rdisting is divided in the following ways:
  32. #    per user    - (cd ~$USER; make Rdist)
  33. #    per source tree    - (cd $SRC;  make Rdist)
  34. #    misc.         - rdist -f distfile.misc
  35.  
  36. set users = (brent deboor douglis nelson ouster andrew sprite)
  37. set srcdirs = (/sprite/src /sprite/local/src /sprite/att/src)
  38.  
  39. foreach user ($users)
  40.     (cd /sprite/users/$user; pmake Rdist)
  41. end
  42.  
  43. foreach dir ($srcdirs)
  44.     (cd $dir; pmake Rdist)
  45. end
  46.  
  47. rdist -f /sprite/lib/misc/distfile.misc
  48.  
  49. @
  50.